home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 13316 / 13316.xpi / content / firefoxOverlay.xul < prev    next >
Extensible Markup Language  |  2009-07-27  |  2KB  |  51 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!-- 
  4.  - Copyright (C) 2009 Norman Solomon
  5.  - e-mail: historytree.addon@yahoo.com
  6.  -
  7.  - The contents of this file are subject to the Mozilla Public License Version
  8.  - 1.1 (the "License"); you may not use this file except in compliance with
  9.  - the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
  10.  -
  11.  - Software distributed under the License is distributed on an "AS IS" basis,
  12.  - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  - for the specific language governing rights and limitations under the License.
  14. -->
  15.  
  16. <!-- Namespaces used -->
  17. <overlay id="historyTree-overlay" xmlns:html="http://www.w3.org/1999/xhtml" 
  18. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  19.  
  20.     <!-- Import Firefox overlay JS file -->
  21.     <script type="application/x-javascript" src="firefoxOverlay.js"/>
  22.     
  23.     <!-- Add Firefox Tools menu item -->
  24.     <menupopup id="menu_ToolsPopup">
  25.         <menuitem id="mnuOpenHistTree" 
  26.         label="History Tree..." 
  27.         insertafter="devToolsSeparator"
  28.         oncommand="historyTree.showSessionHistoryExtensionWindow();"/>
  29.     </menupopup>
  30.  
  31.     <!-- Add Firefox Toolbar button -->
  32.     <toolbarpalette id="BrowserToolbarPalette">
  33.         <toolbarbutton id="btnOpenHistTree" 
  34.         label="History Tree" 
  35.         image="chrome://historyTree/content/images/toolbarButton.gif" 
  36.         tooltiptext="Open history tree window"
  37.         oncommand="historyTree.showSessionHistoryExtensionWindow()"
  38.         class="toolbarbutton-1 chromeclass-toolbar-additional"/>
  39.     </toolbarpalette>
  40.  
  41.     <!-- Add status-bar panel containing hidden canvas -->
  42.     <statusbar id="status-bar">
  43.         <statusbarpanel id="panel" class="statusbarpanel-iconic">
  44.             <vbox flex="1">
  45.                 <html:canvas id="testCanvas" style="display: none">
  46.                 </html:canvas>
  47.             </vbox>
  48.         </statusbarpanel>
  49.     </statusbar>
  50. </overlay>
  51.